@prefix iop: <https://w3id.org/iadopt/ont/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix ex: <http://example.org/iadopt/challenge/> .
@prefix sosa: <http://www.w3.org/ns/sosa/> .
@prefix uom: <http://www.ontology-of-units-of-measure.org/resource/om-2/> .
@prefix iopp: <https://w3id.org/iadopt/pattern/> .
@prefix patt: <http://example.org/iadopt/pattern> .

ex:C28
    a 
        iop:Variable ;
    rdfs:label 
        "Overnight stays in 3-star hotel near the sea shore" ;
    rdfs:comment 
        """Number of nights in a 3-star hotel near the sea shore""" ;
    ex:issue "https://github.com/mabablue/I-ADOPT-examples-playground/issues/34" ;
    iop:hasObjectOfInterest 
        <https://www.wikidata.org/entity/Q575> ;
    iop:hasMatrix 
        <https://www.wikidata.org/entity/Q27686> ;
    iop:hasProperty 
        <http://qudt.org/vocab/quantitykind/Count> ;
    iop:hasConstraint 
        [ a iop:Constraint ;
             rdfs:label "vicinity: near the sea shore" ;
             iop:constrains <https://www.wikidata.org/entity/Q27686> ;
        ] ,
        [ a iop:Constraint ;
             rdfs:label "rating: three star" ;
             iop:constrains <https://www.wikidata.org/entity/Q27686> ;
        ] .

<https://www.wikidata.org/entity/Q575>
    a 
        iop:Entity ;
    rdfs:label 
        "night" .

<https://www.wikidata.org/entity/Q27686>
    a 
        iop:Entity ;
    rdfs:label 
        "hotel" .

<http://qudt.org/vocab/quantitykind/Count>
    a 
        iop:Property ;
    rdfs:label 
        "count" .
